| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | describe('Direct Generator', function () { |
||
| 6 | it('Execute test Remoting method', function() { |
||
| 7 | var value = ""; |
||
| 8 | Test.TestBundle.Test.test(function(data) { |
||
| 9 | value = data; |
||
| 10 | }); |
||
| 11 | waitsFor(function() { |
||
| 12 | return (value != "") |
||
| 13 | }, "The Value should be set", 2000); |
||
| 14 | runs(function() { |
||
| 15 | expect(value['result']).toBe('test'); |
||
| 16 | }); |
||
| 17 | }); |
||
| 18 | it('Execute test Remoting method with parameter', function() { |
||
| 42 | }); |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.